*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20PX 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .logo{
    width: 80px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color: black;
    font-size: 17px;
}
.content  h1{
    
  font-size: 48px;
  font-weight: bold;
  color: black;
  text-align: center;
  margin-top: 100px;
  text-shadow: 2px 2px 8px #000;
  letter-spacing: 2px;

}
.content p{
  margin-top: 60px;
  padding: 0 50px;
  color: #fff;
  font-size: 25px;
  line-height: 1.6;
  text-shadow: 1px 1px 5px black;
  
}
p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 25px;
  color: white;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  padding-left: 40px;
  padding-right: 40px;
}
p {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}


@keyframes fadeIn {
  to {
    opacity: 1;
  }
}